May I comment my C-code?

(info) This article applies to C-code within C-blocks that have been created by a user. The description is not valid for C++-blocks that have been created by a user.

Comment your C-code within an C-block according to ANSI C or C90:

Example for a comment

V(OUT) = V(IN1) + V(IN2);   /* Your comment on the C-code. It may have one or more lines. */

Do not enter any comments in C++ style for a C-block because such comments are not supported by Neuron Power Engineer.

// This comment will produce an error, when you are loading the application onto the PLC.
V(OUT) = V(IN1) + V(IN2);